:root {
  --black: #060606;
  --deep: #0c0c0c;
  --red: #c0272d;
  --red-bright: #e63030;
  --red-dark: #7a0e0e;
  --gold: #d4a017;
  --gold-light: #f0c040;
  --gold-pale: #e8d5a0;
  --white: #f5f0e8;
  --gray: #6b6b6b;
  --gray-light: #999;
  --gray-dark: #2a2a2a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cursor { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; position: fixed; pointer-events: none; z-index: 99999; transform: translate(-50%,-50%); transition: transform 0.1s, width 0.2s, height 0.2s; mix-blend-mode: screen; }
.cursor-ring { width: 32px; height: 32px; border: 1px solid rgba(212,160,23,0.5); border-radius: 50%; position: fixed; pointer-events: none; z-index: 99998; transform: translate(-50%,-50%); transition: transform 0.18s ease; }

/* ============ LOGIN LOGO ============ */
.login-logo-wrap {
  position: relative; width: 200px; height: 200px;
  margin-bottom: 30px; z-index: 1;
}
.login-logo-img {
  width: 100%; height: 100%;
  object-fit: contain;
  animation: logo-spin 8s linear infinite;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 20px rgba(192,39,45,0.6)) drop-shadow(0 0 40px rgba(212,160,23,0.3));
}
@keyframes logo-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.login-logo-glow {
  position: absolute; inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,39,45,0.15), transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* ============ LOGIN ============ */
#login-page {
  position: fixed; inset: 0;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 1s ease, visibility 1s ease;
}
#login-page.hidden { opacity: 0; visibility: hidden; }

.login-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(192,39,45,0.12) 0%, transparent 65%),
              radial-gradient(ellipse at center top, rgba(212,160,23,0.06) 0%, transparent 50%);
}

/* Gold dust particles */
.dust { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.dust-p {
  position: absolute;
  border-radius: 50%;
  animation: dust-float linear infinite;
  opacity: 0;
}
@keyframes dust-float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 0.3; }
  100% { transform: translateY(-5vh) rotate(360deg); opacity: 0; }
}

/* Decorative corners */
.corner { position: absolute; width: 60px; height: 60px; }
.corner::before, .corner::after { content: ''; position: absolute; background: var(--gold); opacity: 0.4; }
.corner::before { width: 100%; height: 1px; top: 0; left: 0; }
.corner::after { width: 1px; height: 100%; top: 0; left: 0; }
.corner-tl { top: 30px; left: 30px; }
.corner-tr { top: 30px; right: 30px; transform: scaleX(-1); }
.corner-bl { bottom: 30px; left: 30px; transform: scaleY(-1); }
.corner-br { bottom: 30px; right: 30px; transform: scale(-1); }

.login-brand {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: 60px;
  letter-spacing: 6px;
  color: var(--white);
  z-index: 1;
  background: linear-gradient(180deg, var(--white), var(--gold-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.login-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 5px;
  color: var(--gray);
  text-transform: uppercase;
  z-index: 1;
  margin-bottom: 48px;
}

.login-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,160,23,0.25);
  padding: 44px 48px;
  width: 340px;
  z-index: 1;
  position: relative;
}
.login-card::before {
  content: '◆';
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  color: var(--gold);
  font-size: 16px;
  background: var(--black);
  padding: 0 8px;
}
.login-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.login-card-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--gray);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 28px;
  display: block;
}

.code-inputs {
  display: flex; gap: 12px; justify-content: center;
  margin-bottom: 32px;
}
.code-input {
  width: 58px; height: 70px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gray-dark);
  color: var(--gold-light);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  text-align: center;
  outline: none;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 2px;
}
/* FIX: Style the placeholder dots */
.code-input::placeholder {
  color: rgba(212,160,23,0.2);
  font-size: 16px;
}
.code-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212,160,23,0.2);
  background: rgba(212,160,23,0.05);
}
.code-input.filled { border-color: rgba(212,160,23,0.5); }

.login-enter-btn {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 8px;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.login-enter-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.login-enter-btn:hover::before { transform: scaleX(1); }
.login-enter-btn:hover { color: var(--black); }
.login-enter-btn span { position: relative; z-index: 1; }

.login-error { color: var(--red-bright); font-size: 10px; letter-spacing: 4px; text-align: center; margin-top: 14px; opacity: 0; transition: opacity 0.3s; text-transform: uppercase; font-family: 'Cormorant Garamond', serif; }
.login-error.show { opacity: 1; }
.login-hint { text-align: center; color: rgba(107,107,107,0.5); font-size: 10px; letter-spacing: 3px; margin-top: 20px; text-transform: uppercase; }
.login-hint em { color: rgba(212,160,23,0.5); font-style: normal; }

/* ============ MAIN SITE ============ */
#main-site { opacity: 0; transition: opacity 1.2s ease; }
#main-site.visible { opacity: 1; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 22px 60px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(6,6,6,0.98) 0%, rgba(6,6,6,0.7) 80%, transparent);
  border-bottom: 1px solid rgba(212,160,23,0.08);
}
.nav-logo {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: 18px; letter-spacing: 6px;
  background: linear-gradient(180deg, var(--white), var(--gold-pale));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  cursor: pointer;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 48px; list-style: none; }
.nav-links a {
  color: var(--gray); text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  transition: color 0.3s; cursor: pointer; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold-pale); }
.nav-links a:hover::after { transform: scaleX(1); }

.cart-btn {
  background: transparent;
  border: 1px solid rgba(212,160,23,0.35);
  color: var(--gold-pale);
  padding: 9px 26px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; position: relative;
}
.cart-btn:hover { border-color: var(--gold); background: rgba(212,160,23,0.07); }
.cart-count {
  position: absolute; top: -7px; right: -7px;
  background: var(--red); color: white;
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 9px; display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  opacity: 0; transition: opacity 0.3s;
}
.cart-count.show { opacity: 1; }

.ci-thumb-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============ HERO ============ */
#hero {
  height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.hero-bg-layer {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(192,39,45,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 20%, rgba(212,160,23,0.05) 0%, transparent 40%);
}

/* Background graphic */
.hero-bg-graphic {
  position: absolute;
  bottom: -5%; left: 50%; transform: translateX(-50%);
  width: 80%; max-width: 900px;
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: bg-breathe 6s ease-in-out infinite;
}
@keyframes bg-breathe {
  0%,100% { opacity: 0.07; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.11; transform: translateX(-50%) scale(1.01); }
}

/* Gold texture overlay */
.hero-texture {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 20px,
    rgba(212,160,23,0.015) 20px,
    rgba(212,160,23,0.015) 21px
  );
}

/* Divider lines */
.hero-line-l, .hero-line-r {
  position: absolute;
  top: 50%; width: 1px; height: 35vh;
  transform: translateY(-50%);
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.2;
}
.hero-line-l { left: 60px; }
.hero-line-r { right: 60px; }

.hero-content { position: relative; z-index: 1; text-align: center; }

.hero-pre {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 10px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.9s ease 0.4s forwards;
}
.hero-pre::before, .hero-pre::after {
  content: '——'; margin: 0 12px;
  color: rgba(212,160,23,0.4);
}

/* FIX 3: Replaced inline style="position:relative;display:inline-block;" */
.wordmark-wrap {
  position: relative;
  display: inline-block;
}

.hero-wordmark {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: clamp(90px, 16vw, 200px);
  line-height: 0.9;
  letter-spacing: 8px;
  background: linear-gradient(180deg, var(--white) 0%, var(--gold-pale) 55%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  opacity: 0; animation: fadeUp 0.9s ease 0.6s forwards;
  position: relative;
  filter: drop-shadow(0 4px 0px rgba(192,39,45,0.25));
}
.hero-wordmark-shadow {
  position: absolute;
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: clamp(90px, 16vw, 200px);
  line-height: 0.9;
  letter-spacing: 8px;
  color: var(--red);
  opacity: 0.12;
  top: 8px; left: 5px;
  pointer-events: none;
}

.hero-divider {
  display: flex; align-items: center; gap: 16px;
  justify-content: center;
  margin: 20px 0;
  opacity: 0; animation: fadeUp 0.9s ease 0.8s forwards;
}
.hero-divider-line { flex: 1; max-width: 120px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); opacity: 0.4; }
.hero-divider-line:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.hero-divider-gem { color: var(--gold); font-size: 12px; opacity: 0.8; }

.hero-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 28px);
  letter-spacing: 6px;
  color: rgba(245,240,232,0.55);
  text-transform: uppercase;
  opacity: 0; animation: fadeUp 0.9s ease 1s forwards;
}
.hero-slogan em { color: var(--red-bright); font-style: normal; }

.hero-cta {
  margin-top: 40px; display: flex; gap: 20px; justify-content: center;
  opacity: 0; animation: fadeUp 0.9s ease 1.2s forwards;
}

.btn-gold {
  padding: 15px 48px;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px; letter-spacing: 6px;
  cursor: pointer; transition: all 0.35s;
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,160,23,0.35); }
.btn-gold:hover::before { opacity: 1; }

.btn-outline-red {
  padding: 15px 48px;
  background: transparent;
  border: 1px solid rgba(192,39,45,0.6);
  color: rgba(245,240,232,0.8);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px; letter-spacing: 6px;
  cursor: pointer; transition: all 0.3s;
}
.btn-outline-red:hover { border-color: var(--red-bright); color: var(--white); background: rgba(192,39,45,0.08); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeUp 1s ease 1.8s forwards;
}
.scroll-cue span { font-size: 9px; letter-spacing: 6px; color: var(--gray); text-transform: uppercase; }
.scroll-cue-line { width: 1px; height: 0; background: linear-gradient(to bottom, var(--gold), transparent); animation: grow-line 1.5s ease-in-out 2s infinite; }
@keyframes grow-line { 0% { height: 0; opacity: 1; } 100% { height: 55px; opacity: 0; } }

/* ============ MARQUEE ============ */
.marquee-wrap {
  padding: 14px 0;
  background: var(--red-dark);
  overflow: hidden;
  border-top: 1px solid rgba(212,160,23,0.2);
  border-bottom: 1px solid rgba(212,160,23,0.2);
}
.marquee-inner { display: flex; width: max-content; animation: marquee 25s linear infinite; }
.mi {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px; letter-spacing: 6px;
  color: rgba(245,240,232,0.85);
  padding: 0 50px; white-space: nowrap; text-transform: uppercase;
}
.mi-gem { color: var(--gold); font-style: normal; font-size: 9px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ FEATURE SECTION ============ */
.feature-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 1100px; margin: 0 auto;
  padding: 100px 60px;
  gap: 60px;
  position: relative;
}
.feature-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(212,160,23,0.15), transparent);
}
.feat {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  border: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}
.feat:hover { border-color: rgba(212,160,23,0.15); background: rgba(212,160,23,0.02); }
.feat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px; line-height: 1;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  opacity: 0.3; margin-bottom: 12px;
  transition: opacity 0.3s;
}
.feat:hover .feat-number { opacity: 0.6; }
.feat-title { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 4px; color: var(--gold-pale); margin-bottom: 12px; }
.feat-text { font-size: 13px; color: var(--gray-light); line-height: 1.9; letter-spacing: 1px; }

/* ============ ABOUT ============ */
#about { padding: 80px 60px 120px; position: relative; overflow: hidden; }
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-left { position: relative; }
.about-graphic-frame { position: relative; aspect-ratio: 3/4; }
.about-graphic-bg { position: absolute; inset: 0; border: 1px solid rgba(212,160,23,0.15); }
.about-graphic-img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(192,39,45,0.3));
  padding: 20px;
  animation: subtle-breathe 5s ease-in-out infinite;
}
@keyframes subtle-breathe {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}
.about-corner-dec { position: absolute; width: 30px; height: 30px; }
.about-corner-dec::before, .about-corner-dec::after { content: ''; position: absolute; background: var(--gold); opacity: 0.5; }
.about-corner-dec::before { width: 100%; height: 1px; }
.about-corner-dec::after { width: 1px; height: 100%; }
.acd-tl { top: -1px; left: -1px; }
.acd-tr { top: -1px; right: -1px; transform: scaleX(-1); }
.acd-bl { bottom: -1px; left: -1px; transform: scaleY(-1); }
.acd-br { bottom: -1px; right: -1px; transform: scale(-1); }
.about-tag {
  position: absolute; bottom: -18px; left: 30px;
  background: var(--red);
  padding: 8px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--white);
}
.about-kicker { font-size: 10px; letter-spacing: 7px; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; display: block; }
.about-title { font-family: 'Playfair Display', serif; font-size: clamp(38px, 4.5vw, 58px); line-height: 1.1; color: var(--white); margin-bottom: 28px; }
.about-title em { font-style: italic; color: var(--red-bright); }
.about-body { font-size: 15px; line-height: 2; color: rgba(245,240,232,0.5); margin-bottom: 20px; letter-spacing: 0.5px; }
.about-body em { color: var(--gold-pale); font-style: normal; }
.about-pull {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 22px;
  color: var(--red-bright); line-height: 1.5;
  padding: 24px 0 24px 24px;
  border-left: 2px solid var(--red);
  margin: 32px 0; opacity: 0.85;
}
.about-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.about-stat { border-top: 1px solid rgba(212,160,23,0.2); padding-top: 16px; }
.about-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--gold); letter-spacing: 2px; }
.about-stat-label { font-size: 10px; letter-spacing: 4px; color: var(--gray); text-transform: uppercase; }

/* ============ SHOP ============ */
#shop { padding: 100px 40px; }
.shop-inner { max-width: 1400px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 70px; }
.sh-eyebrow { font-size: 10px; letter-spacing: 7px; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; display: block; }
.sh-title { font-family: 'Playfair Display', serif; font-size: clamp(42px, 6vw, 72px); line-height: 1.1; color: var(--white); }
.sh-title em { font-style: italic; color: var(--red-bright); }
.sh-sub { font-size: 13px; letter-spacing: 3px; color: var(--gray); margin-top: 14px; text-transform: uppercase; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 2px; }
.pc { background: var(--deep); position: relative; overflow: hidden; cursor: pointer; }
.pc:hover .pc-img-inner { transform: scale(1.04); }
.pc:hover .pc-actions { opacity: 1; }
.pc:hover .pc-name-bar { background: rgba(212,160,23,0.08); }
.pc-img { aspect-ratio: 3/4; overflow: hidden; background: #0e0e0e; position: relative; }
.pc-img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.pc-bg-art { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0.12; transition: opacity 0.5s; }
.pc:hover .pc-bg-art { opacity: 0.22; }
.pc-bg-art img { width: 90%; height: 90%; object-fit: contain; }
.pc-emoji { font-size: 56px; position: relative; z-index: 1; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); }
.pc-number { position: absolute; bottom: 14px; right: 14px; font-family: 'Bebas Neue', sans-serif; font-size: 11px; letter-spacing: 3px; color: rgba(212,160,23,0.25); }
.pc-tag { position: absolute; top: 14px; left: 14px; background: var(--red); padding: 4px 10px; font-size: 9px; letter-spacing: 3px; color: white; text-transform: uppercase; font-family: 'Cormorant Garamond', serif; }
.pc-tag.gold { background: var(--gold); color: var(--black); }
.pc-actions { position: absolute; inset: 0; background: rgba(6,6,6,0.5); display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: opacity 0.4s; }
.pc-add { width: 100%; padding: 14px; background: var(--gold); border: none; color: var(--black); font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 5px; cursor: pointer; transform: translateY(10px); transition: transform 0.3s, background 0.3s; }
.pc:hover .pc-add { transform: translateY(0); }
.pc-add:hover { background: var(--gold-light); }
.pc-info { padding: 20px 20px 24px; border-top: 1px solid rgba(212,160,23,0.08); }
.pc-name-bar { transition: background 0.3s; padding: 0 0 12px 0; }
.pc-name { font-family: 'Bebas Neue', sans-serif; font-size: 19px; letter-spacing: 3px; color: var(--white); margin-bottom: 5px; }
.pc-desc { font-size: 11px; color: var(--gray); letter-spacing: 1px; line-height: 1.6; margin-bottom: 14px; }
.pc-footer { display: flex; align-items: center; justify-content: space-between; }
.pc-price { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); }
.pc-sizes { display: flex; gap: 5px; }
.sz { width: 26px; height: 26px; border: 1px solid var(--gray-dark); display: flex; align-items: center; justify-content: center; font-size: 9px; letter-spacing: 1px; color: var(--gray); cursor: pointer; transition: all 0.2s; font-family: 'Cormorant Garamond', serif; }
.sz:hover, .sz.active { border-color: var(--gold); color: var(--gold); background: rgba(212,160,23,0.07); }

/* ============ EDITORIAL STRIP ============ */
.editorial-strip {
  padding: 100px 60px;
  background: rgba(192,39,45,0.03);
  border-top: 1px solid rgba(192,39,45,0.1);
  border-bottom: 1px solid rgba(192,39,45,0.1);
  position: relative; overflow: hidden;
}
.editorial-strip::before {
  content: 'BYOKI';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22vw;
  color: rgba(192,39,45,0.03);
  letter-spacing: 20px;
  white-space: nowrap;
  pointer-events: none;
}
.editorial-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; }
.editorial-gem { font-size: 20px; color: var(--gold); opacity: 0.6; margin-bottom: 20px; letter-spacing: 10px; }
.editorial-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(26px, 4vw, 48px); line-height: 1.5; color: var(--white); margin-bottom: 28px; opacity: 0.9; }
.editorial-quote em { color: var(--red-bright); font-style: normal; }
.editorial-quote strong { color: var(--gold); font-style: normal; font-weight: 400; }
.editorial-attr { font-size: 10px; letter-spacing: 8px; color: var(--gray); text-transform: uppercase; }

/* ============ CART ============ */
/* FIX: Added -webkit-backdrop-filter for Safari support */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 2000; opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px;
  background: var(--deep);
  border-left: 1px solid rgba(212,160,23,0.15);
  z-index: 2001;
  transform: translateX(100%); transition: transform 0.55s cubic-bezier(0.77,0,0.175,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { padding: 28px 32px; border-bottom: 1px solid rgba(212,160,23,0.1); display: flex; justify-content: space-between; align-items: center; }
.cart-head-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 6px; color: var(--gold-pale); }
.cart-x { background: none; border: none; color: var(--gray); font-size: 20px; cursor: pointer; transition: color 0.2s; font-family: 'Cormorant Garamond', serif; }
.cart-x:hover { color: var(--white); }
.cart-body { flex: 1; overflow-y: auto; padding: 24px 32px; }
.cart-body::-webkit-scrollbar { width: 2px; }
.cart-body::-webkit-scrollbar-thumb { background: var(--gold); opacity: 0.3; }
.cart-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.04); animation: slideIn 0.3s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateX(15px); } to { opacity: 1; transform: translateX(0); } }
.ci-thumb { width: 72px; height: 92px; background: var(--gray-dark); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.ci-details { flex: 1; }
.ci-name { font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 2px; margin-bottom: 4px; }
.ci-meta { font-size: 10px; color: var(--gray); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.ci-qty { display: flex; align-items: center; gap: 12px; }
.ci-q-btn { width: 24px; height: 24px; background: var(--gray-dark); border: none; color: white; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.ci-q-btn:hover { background: var(--gold); color: var(--black); }
.ci-q-num { font-size: 13px; min-width: 20px; text-align: center; }
.ci-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.ci-price { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold); }
.ci-rm { background: none; border: none; color: rgba(255,255,255,0.2); cursor: pointer; font-size: 13px; transition: color 0.2s; }
.ci-rm:hover { color: var(--red); }
.cart-empty { text-align: center; padding: 70px 20px; color: var(--gray); font-size: 12px; letter-spacing: 4px; text-transform: uppercase; }
.cart-empty-ico { font-size: 36px; margin-bottom: 14px; opacity: 0.25; }

.cart-foot { padding: 24px 32px; border-top: 1px solid rgba(212,160,23,0.1); }
/* FIX 4: Replaced style="display:none" with a CSS class */
.cart-foot-hidden { display: none; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.cart-total-lbl { font-size: 10px; letter-spacing: 5px; color: var(--gray); text-transform: uppercase; }
.cart-total-val { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--white); }
.checkout-btn { width: 100%; padding: 17px; background: var(--gold); color: var(--black); border: none; font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 7px; cursor: pointer; transition: all 0.3s; }
.checkout-btn:hover { background: var(--gold-light); box-shadow: 0 0 25px rgba(212,160,23,0.3); }

/* ============ FOOTER ============ */
footer { padding: 90px 60px 40px; border-top: 1px solid rgba(212,160,23,0.1); position: relative; overflow: hidden; }
footer::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); opacity: 0.3; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 70px; }
.f-logo-text { font-family: 'UnifrakturMaguntia', cursive; font-size: 56px; letter-spacing: 4px; background: linear-gradient(180deg, var(--white), var(--gold-pale)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 10px; }
.f-slogan { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 13px; letter-spacing: 4px; color: var(--gray); margin-bottom: 28px; }
.f-social { display: flex; gap: 8px; }
.f-soc { width: 34px; height: 34px; border: 1px solid rgba(212,160,23,0.2); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--gray); transition: all 0.3s; cursor: pointer; font-family: 'Cormorant Garamond', serif; }
.f-soc:hover { border-color: var(--gold); color: var(--gold); }
.f-col h5 { font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 4px; color: var(--gold-pale); margin-bottom: 20px; }
.f-col ul { list-style: none; }
.f-col li { margin-bottom: 11px; }
.f-col a { color: var(--gray); text-decoration: none; font-size: 12px; letter-spacing: 2px; transition: color 0.3s; cursor: pointer; }
.f-col a:hover { color: var(--gold-pale); }
.footer-btm { border-top: 1px solid rgba(212,160,23,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.f-copy { font-size: 10px; color: var(--gray); letter-spacing: 3px; }
.f-copy em { color: var(--gold); font-style: normal; }
.f-gem { color: var(--gold); opacity: 0.3; font-size: 12px; letter-spacing: 8px; }

/* ============ MODAL ============ */
/* FIX: Added -webkit-backdrop-filter for Safari support */
.modal-bg {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85);
  z-index: 3000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.4s;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.modal-bg.open { opacity: 1; visibility: visible; }
.modal-box { background: var(--deep); border: 1px solid rgba(212,160,23,0.25); padding: 60px; max-width: 480px; width: 90%; text-align: center; transform: scale(0.92); transition: transform 0.4s; position: relative; }
.modal-bg.open .modal-box { transform: scale(1); }
.modal-box::before { content: '◆ ◆ ◆'; color: var(--gold); font-size: 10px; letter-spacing: 10px; display: block; margin-bottom: 24px; opacity: 0.5; }
.modal-box h2 { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--gold); margin-bottom: 16px; }
.modal-box p { font-size: 13px; color: var(--gray-light); line-height: 2; letter-spacing: 1px; margin-bottom: 36px; }
.modal-cta { padding: 15px 48px; background: var(--gold); color: var(--black); border: none; font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 5px; cursor: pointer; transition: all 0.3s; }
.modal-cta:hover { background: var(--gold-light); }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  nav { padding: 18px 20px; }
  .nav-links { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr; padding: 60px 30px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  footer { padding: 60px 24px 30px; }
  #shop { padding: 60px 20px; }
  #about { padding: 60px 24px; }
  .hero-line-l, .hero-line-r { display: none; }
  .editorial-strip { padding: 60px 30px; }
  .cart-drawer { width: 100%; }
  .hero-cta { flex-direction: column; align-items: center; }
}